excel vba function to convert column number to letter

212

excel vba function to convert column number to letter -

Function ColName(n)
    ColName = Split(Cells(, n).Address, "$")(1)
End Function

Comments

Submit
0 Comments